home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / bin / sensible-pager < prev    next >
Text File  |  2008-09-03  |  288b  |  14 lines

  1. #!/bin/sh
  2.  
  3. ${PAGER:-pager} "$@"
  4. ret="$?"
  5. if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
  6. more "$@"
  7. ret="$?"
  8.     if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
  9.         echo "Couldn't find a pager!" 1>&2
  10.         echo "Set the \$PAGER environment variable to your desired pager." 1>&2
  11.         exit 1
  12.     fi
  13. fi
  14.